/* Variable Font - Regular/Normal */
@font-face {
    font-family: 'NunitoSans';
    src: url('fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900; /* Supports all weights from 100 to 900 */
    font-style: normal;
    font-display: swap;
}

/* Variable Font - Italic */
@font-face {
    font-family: 'NunitoSans';
    src: url('fonts/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900; /* Supports all weights from 100 to 900 */
    font-style: italic;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'NunitoSans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1e3a4a;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a4a;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo a:hover h1 {
    color: #47a3c7; /* Optional: add hover effect */
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.nav a {
    color: #1e3a4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #47a3c7;
}

.nav-separator {
    color: #1e3a4a;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a4a;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #5eb3d1;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(14%) sepia(18%) saturate(1847%) hue-rotate(154deg) brightness(95%) contrast(92%);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 999;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3a4a;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile menu navigation */
.mobile-menu .nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.mobile-menu .nav a {
    font-size: 18px;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    display: block; /* Add this */
    color: #1e3a4a; /* Add this to ensure text is visible */
    text-decoration: none; /* Add this */
}

.mobile-menu .nav a:hover {
    color: #47a3c7;
    padding-left: 10px;
    transition: padding-left 0.3s ease; /* Add smooth transition */
}

.mobile-menu .nav-separator {
    display: none;
}

/* Mobile menu social icons */
.mobile-menu .social-icons {
    margin-top: 30px;
    justify-content: flex-start;
    gap: 20px;
}

.mobile-menu .social-icons a {
    width: 40px;
    height: 40px;
}

.mobile-menu .social-icons img {
    width: 24px;
    height: 24px;
}

/* Overlay backdrop */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: white;
    padding: 50px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hero-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-label {
    color: #184457;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a4a;
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.1;
}

.hero-price {
    font-size: 42px;
    color: #46a0c6;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
}

.hero-price span {
    font-size: 42px;
    color: #1e3a4a;
    font-weight: 300;
}

.tour-details-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.tour-details {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 0;
    padding: 30px 0 0 0;
    border-top: none;
    border-bottom: none;
}

.tour-details .divider {
    width: 1.5px;
    background: #194557;
    position: absolute;
    left: 50%;
    top: 30px;
    bottom: -210px;  /* Changed from -30px to -60px to extend it more */
    transform: translateX(-50%);
}
.detail-column {
    flex: 1;
    text-align: center;
}


.icon-circle svg {
    width: 45px;
    height: 45px;
    color: #5eb3d1;
}

.detail-column p {
    margin-bottom: 8px;
    color: #194557;
    font-size: 14px;
}

.detail-column strong {
    font-weight: 700;
    font-size:18px;
}

.tour-info-bottom {
    display: flex;
    gap: 40px;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: none;
    border-bottom: none;
}

.info-item {
    flex: 1;
    display: flex;
    flex-direction: column;  /* Changed to column layout */
    gap: 15px;
    align-items: center;  /* Center align items */
    text-align: center;  /* Center text */
}

.info-item svg {
    width: 45px;
    height: 45px;
    color: #5eb3d1;
    flex-shrink: 0;
    margin-bottom: 10px;  /* Add space below icon */
}

.info-item div {
    flex: 1;
    width: 100%;  /* Make text container full width */
}

.info-item p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #194557;
}

.info-item strong {
    font-weight: 700;
    font-size:18px;
    color: #194557;
}

.btn-primary {
    background: #5eb3d1;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #4a9bb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94,179,209,0.3);
}

.btn-secondary {
    background: #5eb3d1;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
   background: #4a9bb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94,179,209,0.3);
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Overview Section */
.overview {
    background: #FFFF;
    padding: 30px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 50px;
}

.overview-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    background: #dfeaee;
}

.overview-text h2 {
    font-size: 50px;
    color: #1e3a4a;
    font-weight: 700;
    margin-bottom: 10px;
}

.overview-text .subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    font-size: 34px;
}

.overview-text p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.4;
    font-size: 23px;
}

.overview-text h3 {
    font-size: 35px;
    color: #1e3a4a;
    font-weight: bold;
    font-style: italic;
    margin: 30px 0 15px 0;
}

.checklist {
    list-style: none;
    margin-bottom: 30px;
}

.checklist li,
.xlist li {
    display: flex;
    align-items: flex-start;  
    gap: 15px;
    margin-bottom: 12px;
    font-weight: bolder;
    font-size: 23px;
}

.checklist img {
    width: 25px;
    height: 25px;
    color: #5eb3d1;
    flex-shrink: 0;
}

.xlist {
    list-style: none;
    margin-bottom: 30px;
}

.xlist img{
    width: 25px;
    height: 25px;
    color: #999;
    flex-shrink: 0;
}

.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 350px;  /* Fixed container height */
}

.map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Fills container, crops excess */
    object-position: center;  /* Centers the image */
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #1e3a4a;
}

.map-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #d63384;
}

.info-card {
    background: #dfeaee;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card2 {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 50px;
    color: #1e3a4a;
    font-weight: bolder;
    font-style: italic;
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 23px;
}

.info-card em {
    color: #666;
    font-style: italic;
}

.info-card button {
    margin-top: 20px;
}

 /*INFO CARD 2*/

 .info-card2 h3 {
    font-size: 37px;
    color: #1e3a4a;
    font-weight: bolder;
    font-style: italic;
    margin-bottom: 15px;
}

.info-card2 p {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size:23px
}

.info-card2 em {
    color: #666;
    font-style: italic;
}

.info-card2 button {
    margin-top: 20px;
}

/* FAQ Section */
.faq {
    background: white;
    padding:30px 0;
}

.faq .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq h2 {
    font-size: 42px;
    color: #1e3a4a;
    font-weight: 700;
    margin: 0;
    padding: 30px 30px 20px 30px;
    background: #dfeaee;
    border-radius: 20px 20px 0 0;
}

.faq-list {
    background: #fefefe;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item {
    border-bottom: 1px solid #d0d0d0;
    background: #fefefe;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.active {
    background: #dfeaee;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    color: #1e3a4a;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(223, 234, 238, 0.3);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #1e3a4a;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #dfeaee;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #1e3a4a;
    font-size: 14px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: white;
    padding: 80px 0;
}

.cta-card {
    background: url('images/background\ home.webp');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-subtitle {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 300;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-card .btn-primary {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    color: #1e3a4a;
}

.cta-card .btn-primary:hover {
    background: #5eb3d1;
    color: white;
}

.cta-icon {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.cta-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .overview-sidebar {
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Laptop 1024x861 */
@media (max-width: 1024px) {
    .nav {
        gap: 10px;
    }

    .nav a {
        font-size: 14px;
    }

    .nav-separator {
        font-size: 14px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .header .nav,
    .header .social-icons {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .tour-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .social-icons {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-info {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-price {
        font-size: 32px;
    }
    
    .hero-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-gallery img {
        height: 180px;
    }
    
    .tour-info-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .overview {
        padding: 40px 0;
    }
    
    .overview-text {
        padding: 30px 20px;
    }
    
    .overview-text h2 {
        font-size: 32px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card h3 {
        font-size: 24px;
    }
    
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        font-size: 32px;
    }
    
    .cta {
        padding: 40px 0;
    }
    
    .cta-card {
        padding: 50px 20px;
    }
    
    .cta-subtitle {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 38px;
    }
    
    .cta-text {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
     .logo h1 {
        display: none; /* This will hide the text */
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-price {
        font-size: 28px;
    }
    
    .hero-gallery {
        grid-template-columns: 1fr;
    }
    
    .hero-gallery img {
        height: 220px;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .overview-text h3 {
        font-size: 20px;
    }
    
    .overview-text .subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    font-size: 30px;
    }

    .overview-text p {
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
    font-size: 20px;
}

    .faq h2 {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 24px;
    }
}
